	/* CSS reset */
body,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,th,td { 
    margin:0;
    padding:0;
}


* {S
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Celtic+Hand:wght@400;700&display=swap"); /* import font */

body {	width: 100%;
  		margin: 0 ; 
  		font-family: Celtic Hand, Times;  
		background-image: url("Island.jpg"); background-size: cover;
		background-repeat: no-repeat;
	}

#maintext 	{		
			padding-top: 1.5em ;
			text-align: center;
			font-size: 5em;
			color: #ffaa00; 
			}

#subtext		{
			padding: 0;
			text-align: center;
			font-size: 1.5em;
			color: #ffcc00; 
			}




@media screen and (max-width: 992px)
{
	#maintext	{
				font-size: 3em; 
				color: #ffaa00; 
				}

	#subtext	{
				font-size: 1.2em;
			}

}




	 a:link
	{text-decoration: none; color: #000;
	}
	a:visited
	{text-decoration: none; color: #000;
	}
	a:hover
	{text-decoration: underline; color: #00a;
	}
	a:active
	{text-decoration: underline; color: #00a;
	}


/* header */

.header {


 position: fixed; top: 0;
  width: 100%; height: 8em;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding-top: 20px;
  list-style: none;
  overflow: hidden;
}

	@media screen and (max-width: 992px)
	{	
		.header	{
			height: 7em;
				}

	}

.header li a {
  display: block; 
font-family: Arial;
 padding: 10px 20px;
border-radius: 25px;
  text-decoration: none;
  color: #ffaa00;

}



.header li a:hover,
.header .menu-btn:hover {
 background-color: #ccc;
 color: #405040;
}

	@media screen and (max-width: 992px)
	{	
		.header li a:hover,
		.header .menu-btn:hover	
				{
				 background-color: #ccc;
				color: #405040;
				}
	}


.header .logo {
  display: block; 
  margin-left: 2%;
  float: left;
  font-family: 'Celtic Hand' , sans-serif;
  font-size: 2.5em; 
  color: #405040;
  padding: 30px 20px;
  text-decoration: none; 
}

@media screen and (max-width: 992px)
	{
	.header .logo {
  		display: block; 
 		 margin-left: 2%;
  		float: left;
		}

	}


/****************** menu ****************/

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: hand;
  display: inline-block; float: right;  
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative; right: 3em;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 20em;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 992px) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }


}

